home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue41 / Construc / BOBNEWS.DPR < prev    next >
Encoding:
Text File  |  1998-12-02  |  194 b   |  13 lines

  1. program BobNews;
  2. uses
  3.   Forms,
  4.   Unit1 in 'Unit1.pas' {FormNews};
  5.  
  6. {$R *.RES}
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TFormNews, FormNews);
  11.   Application.Run;
  12. end.
  13.